[LIBXC] Clarify error messages to talk about allocation 'extents'
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Wed, 15 Nov 2006 09:30:44 +0000 (09:30 +0000)
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>
Wed, 15 Nov 2006 09:30:44 +0000 (09:30 +0000)
rather than 'pages'.
Signed-off-by: Jimi Xenidis <jimix@watson.ibm.com>
tools/libxc/xc_domain.c

index 7936d00dc9f7a58ef68a9df182dd692cfc3d7661..ae2b9f6221d3c5473580e4c04fd1aba5e9d316a4 100644 (file)
@@ -352,7 +352,7 @@ int xc_domain_memory_increase_reservation(int xc_handle,
     if ( err >= 0 )
     {
         DPRINTF("Failed allocation for dom %d: "
-                "%ld pages order %d addr_bits %d\n",
+                "%ld extents of order %d, addr_bits %d\n",
                 domid, nr_extents, extent_order, address_bits);
         errno = ENOMEM;
         err = -1;
@@ -390,7 +390,7 @@ int xc_domain_memory_decrease_reservation(int xc_handle,
 
     if ( err >= 0 )
     {
-        DPRINTF("Failed deallocation for dom %d: %ld pages order %d\n",
+        DPRINTF("Failed deallocation for dom %d: %ld extents of order %d\n",
                 domid, nr_extents, extent_order);
         errno = EINVAL;
         err = -1;
@@ -421,7 +421,7 @@ int xc_domain_memory_populate_physmap(int xc_handle,
 
     if ( err >= 0 )
     {
-        DPRINTF("Failed allocation for dom %d: %ld pages order %d\n",
+        DPRINTF("Failed allocation for dom %d: %ld extents of order %d\n",
                 domid, nr_extents, extent_order);
         errno = EBUSY;
         err = -1;